home *** CD-ROM | disk | FTP | other *** search
/ Informática Multimedia 1995 April / Informatica Multimedia CD - Epimundo.iso / DOS / FILE_CHG / TRIMLIN.ZIP / TRIMLINE.DOC < prev    next >
Encoding:
Text File  |  1987-07-18  |  897 b   |  23 lines

  1. This simple program is a filter that removes trailing blanks from each line. It
  2. reads from standard input and produces its output to standard output. The
  3. simplest use of such a filter under dos is as follows:
  4.  
  5.         A>trimline < input-file > output-file
  6.  
  7. Note that the angle-brackets ("<" and ">") indicate redirection of standard
  8. input and output; they must be included.
  9.  
  10. The c-language source code is included for the peace of mind of wary users. It
  11. has been compiled and linked with Microsoft C version 4.0.
  12.  
  13. The author of this program is:
  14.  
  15.         Stephen H. Owades
  16.         Customized Computer Typesetting Services
  17.         1105 Massachusetts Avenue, 3-G
  18.         Cambridge, MA 02138
  19.         (617) 661-7798
  20.  
  21. It may be distributed freely. The only restriction is that the entire archive
  22. must be intact, containing this doc file, the source code, and the executable
  23. file.
  24.